home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / dev / gui / gtlayout.lha / Source / LTP_AdjustMenuPosition.c < prev    next >
C/C++ Source or Header  |  1999-01-02  |  679b  |  34 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1999 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. **
  7. **    :ts=4
  8. */
  9.  
  10. #ifndef _GTLAYOUT_GLOBAL_H
  11. #include "gtlayout_global.h"
  12. #endif
  13.  
  14. #include "Assert.h"
  15.  
  16. #ifdef DO_MENUS    /* Support code */
  17.  
  18.     /* AdjustMenuPosition(RootMenu *Root):
  19.      *
  20.      *    Calculate the effective positions of the menus
  21.      *    and submenus.
  22.      */
  23.  
  24. VOID
  25. LTP_AdjustMenuPosition(RootMenu *Root)
  26. {
  27.     MenuNode *Menu;
  28.  
  29.     for(Menu = (MenuNode *)Root->MenuList.mlh_Head ; Menu->Node.mln_Succ ; Menu = (MenuNode *)Menu->Node.mln_Succ)
  30.         Menu->Width = LTP_AdjustItemPosition(Menu->Menu.FirstItem,Menu->Menu.LeftEdge + 4,Root->Screen->BarHeight + 1);
  31. }
  32.  
  33. #endif    /* DO_MENUS */
  34.